body {
    background-color: white;
}

main {
    padding: 20px;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 30px;
    background-color: #d2f2f2;
}

h1 {
    font-family: Roboto-Bold;
    font-size: 36px;
    color: black;
    margin-bottom: 30px;
}



.contact-form label {
    display: block;
    font-family: Roboto-Bold;
    color: black;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-form input {
    display: block;
    width: 200px;
    padding: 10px;
    margin-bottom: 40px;
    background-color: white;
    font-family: Roboto;
    font-size: 16px;
    color: black;
    width: 100%;
}

textarea {
    display: block; 
    font-family: Roboto;
    color: black;
    font-size: 16x;
    background-color: white;
    height: 150px;
    width: 100%;
}


.contact-form button {
    margin-top: 30px;
    padding: 10px 20px;
    font-family: Roboto;
    font-size: 20px;
    color: white;
    background-color: navy;
    border-radius: 5px;
}







footer {
    margin-top: 100px;
}

.newsletter-column {
    display: flex;
    flex-direction: column;
}
.newsletter-column h3 {
    color: #e0e3ef;
    font-family: Roboto-Bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.newsletter-column p {
    color: #e0e3ef;
    font-family: Roboto;
    font-size: 16px;
    margin-left: 0px;
    margin-bottom: 5px;
}

.newsletter-column input[type="text"] {
    background-color: #e0e3ef;
    color: black;
    font-size: 16px;
    font-family: Roboto;
    padding: 10px;
}


.newsletter-column input[type="text"]:hover {
    background-color: white;
}

.newsletter-column input[type="submit"] {
    background-color: var(--light);
    color: navy;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-family: Roboto-Bold;
    font-size: 16px;
}


